Return to doc.sitecore.com

  Web.config changes in Sitecore CMS 6.3.0 rev. 101029 compared to Sitecore CMS 6.3.0 rev. 100830

Select the link below to download the Web.config file of the default Sitecore CMS 6.3.0 rev. 101029 installation:

Below is the list of changes made to the Web.config file of Sitecore CMS 6.3.0 rev. 101029 as compared to the Web.config file of Sitecore CMS 6.3.0 rev. 100928:

  1. Add the following event handler to the <events> section. The list of sites should be modified to include the relevant sites for which the cache should be cleared (and should match the list of sites defined for the "publish:end" event handler):
    <event name="publish:end:remote">
      <handler type="Sitecore.Publishing.HtmlCacheClearer, Sitecore.Kernel" method="ClearCache">
        <sites hint="list">
          <site>website</site>
        </sites>
      </handler>
    </event>